home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 138 / 138.xpi / chrome / stumbleupon.jar / content / reportTopicDialog.xul < prev    next >
Extensible Markup Language  |  2009-05-22  |  2KB  |  96 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE window SYSTEM "chrome://stumbleupon/locale/stumbleupon.dtd" >
  6.  
  7. <dialog id="stumble_report_topic_dialog" title="Report Wrong Topic - StumbleUpon"
  8.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.   buttons="accept,cancel"
  10.   persist="screenX screenY"
  11.   ondialogaccept="return doOK();"
  12.   onload="init()">
  13.  
  14. <script type="application/x-javascript" src="reportTopicDialog.js"/>
  15.  
  16. <spacer height="10px"/>
  17. <hbox>
  18.     <vbox>
  19.         <image class="question-icon" />
  20.     </vbox>
  21.     <hbox>
  22.         <vbox>
  23.             <spacer style="height: 10px;"/>
  24.             <label style="font-size: 16px; font-weight: bold;" value="  Do you want to move this page?  "/>
  25.             <spacer style="height: 20px;"/>
  26.             <grid>
  27.                 <columns>
  28.                     <column flex="1"/>
  29.                     <column flex="20"/>
  30.                     <column flex="80"/>
  31.                 </columns>
  32.                 <rows>
  33.                     <row>
  34.                         <spacer/>
  35.                         <vbox align="right">
  36.                             <spacer flex="3"/>
  37.                             <description>from topic:</description>
  38.                             <spacer flex="1"/>
  39.                         </vbox>
  40.                         <label id="prompt_old_topic" style="font-weight:bold; font-size:15px; color:gray;" value="stub a"/>
  41.                     </row>
  42.                     <row>
  43.                         <spacer height="5px"/>
  44.                         <spacer/>
  45.                         <spacer/>
  46.                     </row>
  47.                     <row>
  48.                         <spacer/>
  49.                         <vbox align="right">
  50.                             <spacer flex="3"/>
  51.                             <description>to topic:</description>
  52.                             <spacer flex="1"/>
  53.                         </vbox>
  54.                         <label id="prompt_new_topic" style="font-weight:bold; font-size:15px;" value="stub a"/>
  55.                     </row>
  56.                 </rows>
  57.             </grid>
  58.             <spacer height="10px"/>
  59.         </vbox>
  60.     </hbox>
  61. </hbox>
  62. <spacer height="10px"/>
  63.  
  64. <!--
  65. <grid flex="1" style="margin:10px">
  66.   <columns>
  67.     <column flex="1"/>
  68.   </columns>
  69.   <rows>
  70.     <row>
  71.             <label value="Enter up to 5 tags, separated by commas:"/>
  72.         </row>
  73.         <row>
  74.             <textbox id="tags"
  75.                 maxrows="14"
  76.                 flex="1"
  77.                 autocompletepopup="tagspopup"
  78.                 inputtooltiptext="Enter Tag Terms separated by Commas"
  79.                 ontextentered="handle_tags_textentered()"
  80.                 ontextreverted="handle_tags_textreverted()"
  81.                 onkeyup="handle_tags_keyup(event)"
  82.                 onfocus="handle_tags_focus()"
  83.                 onclick="tags_click_kludge('click')"
  84.                 onblur="tags_click_kludge('blur')"
  85.                 reflectpopuplabel="true"
  86.                 sizetopopup="none"
  87.                 maxLength="150"/>
  88.         </row>
  89.         <row>
  90.             <label value="Spaces are allowed in a tag." style="color:grey;"/>
  91.         </row>
  92.     </rows>
  93. </grid>
  94. -->
  95. </dialog>
  96.